projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4fda9c9
)
* buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing change
author
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 27 Apr 2011 08:06:26 +0000
(
01:06
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 27 Apr 2011 08:06:26 +0000
(
01:06
-0700)
src/ChangeLog
patch
|
blob
|
history
src/buffer.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 5584eb61980ebb714afaf6af0d6b315cfa2dfa37..e2ac23256a7e5a8f0b77f539ebc963f8c6e28c8d 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,8
@@
+2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
+
+ * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
+ change.
+
2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
* nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
diff --git
a/src/buffer.c
b/src/buffer.c
index d9949045444c90a9cd30e03604f0b89ead6fc9e7..05bd129976fd905e33a4fb29cf40c72fe66879f6 100644
(file)
--- a/
src/buffer.c
+++ b/
src/buffer.c
@@
-5155,7
+5155,7
@@
init_buffer (void)
Map new memory. */
struct buffer *b;
- for (b = all_buffers; b; b = b->
next
)
+ for (b = all_buffers; b; b = b->
header.next.buffer
)
if (b->text->beg == NULL)
enlarge_buffer_text (b, 0);
}